home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / gkismet / PacketBox.pm < prev    next >
Text File  |  2005-10-20  |  2KB  |  81 lines

  1. #!/usr/bin/perl -w
  2. #
  3. # $Id: PacketBox.pm,v 1.3 2003/07/09 22:53:13 solovam Exp $
  4. #
  5. # This file is a part of gkismet
  6. #
  7. # This program is free software; you can redistribute it and/or
  8. # modify it under the terms of the GNU General Public License
  9. # as published by the Free Software Foundation; either version 2
  10. # of the License, or (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program; if not, write to the Free Software
  19. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  20. #
  21.  
  22. #
  23. # PacketBox class
  24. #
  25. package PacketBox;
  26.  
  27. use Gtk;
  28. use Misc;
  29. use InfoBox;
  30. use strict;
  31. @PacketBox::ISA = qw(InfoBox);
  32.  
  33. my @labels = ('Networks', 'Packets', 'Crypt', 'Weak', 'Noise', 'Dropped', 'Rate');
  34.  
  35. #
  36. # Get list of labels
  37. #
  38. sub getLabels
  39. {
  40.     my $self = shift;
  41.     return(@labels);
  42. }
  43.  
  44. #
  45. # Get frame label text
  46. #
  47. sub getTitle
  48. {
  49.     return 'Packet stats';
  50. }
  51.  
  52. #
  53. # Get value by label
  54. #
  55. sub getValue
  56. {
  57.     my $self = shift;
  58.     my $label = shift;
  59.     return $self->{'connection'}->getInfo()->{lc($label)};
  60. }
  61.  
  62. #
  63. # Is it out update?
  64. #
  65. sub isInterestingUpdate
  66. {
  67.         my $self = shift;
  68.         my $data = shift;
  69.  
  70.         if($data->{'changed'} eq 'info')
  71.         {
  72.                 return $true;
  73.         }
  74.         else
  75.         {
  76.                 return $false;
  77.         }
  78. }
  79.  
  80. 1;
  81.